home *** CD-ROM | disk | FTP | other *** search
- On 02-Okt-97, Peter Falkesand smashed the keyboard with:
- >Hi All..
-
- Hello
-
-
- >Now i have a question for all of ya AMOS freaks out there!!!
-
- Who ME ?? :-))
-
-
- >Is there some good extension that converts Dec to Hex ???
- >I know AMOS has one of it self but i doesn't like it.
- >A$=Hex$(50) give me the answer $32
- >But i doesn't want the $-sign in the value..
-
- Use:
- A$=Hex$(50)-"$"
- or:
- A$=Mid$(Hex$(50),2)
-
- >How do i copy a section of memory Ex.(175760-1788332) to
- >section (278544-281616)????
-
- I haven't checked it, but something like:
- Copy Start_of_Source,End_of_Sorce to Start_of_Dest
- (Be sure that you've got enough memory at Dest or crash..)
-
-
- >And now to my second problem!
- >If i load a hiscore with
- >Bload"bla:bla.blascore",5
- >and a second one with
- >Bload"bla:bla.blascore2",6
-
- >how do i merge them into one hiscore??
-
- >with the highest first etc..
- >(i only need a type of sort routine or ???)
-
- Uhh, reserve a new bank with enough room to hold both lists, then sort 'em
- out and put 'em in using the order you'd like, an easy high-hunter should
- be enough as I don't expect you've got that many to remember, and to make
- very advanced binary sorting on that is a waste of time.. (High-hunt= run
- down the list to find the highest value, store that, then run down again
- the find the second, and so on)
-
- >Happy to get answers..
-
- Happy to give answers..
- --
- Happy greetings, Yours..
- __________________________________________________________________________
- /_ __/ __ / __ /\ ___\ __ \__ _\ aka. JENS VANG PETERSEN
- / / / /_/ / ____/ \ \___\ __ \ \ \ Nyvej 8, DK-4450 Jyderup, Denmark
- /_/ /_____/_/ \_____\_\ \_\ \_\ top_cat@post8.tele.dk
- --------------------------------------------------------------------------
- Never forget the 'Queen Of Hearts', Diana, Princess Of Wales, 1961->1997
- --------------------------------------------------------------------------
-
-
-